home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 1647 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.2 KB

  1. Path: CS.Arizona.EDU!not-for-mail
  2. From: dave@CS.Arizona.EDU (Dave Schaumann)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: Unicode
  5. Date: 21 Jan 1996 22:34:37 -0700
  6. Organization: University of Arizona CS Department, Tucson AZ
  7. Message-ID: <4dv7ld$jl2@lectura.CS.Arizona.EDU>
  8. References: <48rofp$4ol@sinsen.oslonett.no>
  9. NNTP-Posting-Host: lectura.cs.arizona.edu
  10.  
  11. In article <48rofp$4ol@sinsen.oslonett.no>,
  12. Ilan Sharoni <ilan@oslonett.no> wrote:
  13. >
  14. >Can someone be so kind (and patient) to tell me what is Unicode?
  15.  
  16. As you no doubt know, ASCII is a definition of a character set
  17. using 8 bit characters.  With 8 bits, you get 256 characters.
  18.  
  19. Of course, these days, people want to have different fonts,
  20. colors, graphical characters, fonts with more than 256 symbols
  21. in them (for stuff like Japaneses and Chinese language text),
  22. etc, etc.  There are basically two ways to go about this.  One
  23. is to introduce special escape sequences for the new features
  24. (like the way the cursor can be moved around on Amiga console
  25. windows).
  26.  
  27. The second solution is to devise a 16 bit character set.  This
  28. gives you 65,536 characters to work with.  This is the course
  29. Unicode takes.  Unicode is used on machines running Windows NT.
  30. I'm not aware if anyone else uses it.
  31.  
  32. -Dave
  33.